home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / PROGEDIT / 0748.ZIP / KEYCONF.C < prev    next >
Text File  |  1985-12-20  |  291b  |  17 lines

  1. /* GENKEY.C - this program generates a 256 line file to stdout of the form
  2.  
  3.     0=0
  4.     1=1
  5.     ...
  6.     255=255
  7.  
  8.   This should be re-directed to a file which will be later read by keycomp.exe
  9. */
  10.  
  11. main()
  12. {
  13.   int  c;
  14.   for (c = 0;  c < 256;  c++)  printf("%d=%d\n", c, c);
  15. }
  16.  
  17.